home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Disk&HD / MagicSelector.LHA / MagicSelector / Install MagicSelector < prev    next >
Encoding:
Text File  |  1994-08-30  |  1.7 KB  |  118 lines

  1. ; script to install MagicSelector 
  2.  
  3. (set Opt 7)
  4. (complete 0)
  5. (set destdir "Sys:Prefs") 
  6. (set destdir2 "Sys:WBStartup") 
  7.  
  8. (set installfiles
  9.     (askoptions
  10.         (prompt "Which of the following optional programs/helpfile should be installed ?")
  11.         (help @askoptions-help)
  12.         (choices "MagicSelector" "MagicSelector Preferences" "MagicSelector.Guide")
  13.         (default Opt)
  14.     )
  15. )
  16.  
  17. (complete 20)
  18.  
  19. ;Copy program files to destination.
  20.  
  21. (if (BITAND installfiles 1)
  22. (copyfiles
  23.     (source "MagicSelector")
  24.     (dest destdir2)
  25. )
  26. )
  27.  
  28. (if (BITAND installfiles 1)
  29. (copyfiles
  30.     (source "MagicSelector.info")
  31.     (dest destdir2)
  32. )    
  33. )
  34.  
  35. (complete 40)
  36.  
  37.  
  38. (if (BITAND installfiles 2)
  39. (copyfiles
  40.     (source "Preferences/MagicSelector")
  41.     (dest destdir)
  42. )
  43. )
  44.  
  45. (if (BITAND installfiles 2)
  46. (copyfiles
  47.     (source "Preferences/MagicSelector.info")
  48.     (dest destdir)
  49. )    
  50. )
  51.  
  52. (complete 60)
  53.  
  54. (if (BITAND installfiles 4)
  55. (
  56.     (makedir ("Help:English")
  57.     )
  58.  
  59. (copyfiles
  60.     (source "Help/MagicSelector.guide")
  61.     (dest "help:english/")
  62. )
  63. )
  64. )
  65.  
  66. (if (BITAND installfiles 4)
  67. (copyfiles
  68.     (source "Help/MagicSelector.guide.info")
  69.     (dest "help:english/")
  70. )
  71. )
  72.  
  73. (complete 70)
  74. (set Opt 2)
  75.  
  76. (set installfiles
  77.     (askoptions
  78.         (prompt "Which of the following locale should be installed ?")
  79.         (help @askoptions-help)
  80.         (choices "Norsk" "English")
  81.         (default Opt)
  82.     )
  83. )
  84.  
  85. (if (BITAND installfiles 1)
  86. (copyfiles
  87.     (source "Preferences/Catalogs/Norsk/MagicSelector.Catalog")
  88.     (dest "Locale:Catalogs/Norsk/")
  89. )
  90. )
  91.  
  92. (copyfiles
  93.     (source "WBPattern.prefs")
  94.     (dest "ENVARC:SYS/")
  95. )
  96.  
  97. (copyfiles
  98.     (source "WBPattern.prefs")
  99.     (dest "ENV:SYS/")
  100. )
  101.  
  102. (copyfiles
  103.     (source "Sound.prefs")
  104.     (dest "ENVARC:SYS/")
  105. )
  106.  
  107. (copyfiles
  108.     (source "Sound.prefs")
  109.     (dest "ENV:SYS/")
  110. )
  111.  
  112. ;Correct @default-dest so that final information is correct.
  113. (set @default-dest destdir)
  114.  
  115. (complete 100)
  116.  
  117. (exit)
  118.